projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ade9369
)
Fix indentation
author
Andreas Schwab
<schwab@linux-m68k.org>
Fri, 24 Dec 2010 09:25:18 +0000
(10:25 +0100)
committer
Andreas Schwab
<schwab@linux-m68k.org>
Fri, 24 Dec 2010 09:25:18 +0000
(10:25 +0100)
src/print.c
patch
|
blob
|
history
diff --git
a/src/print.c
b/src/print.c
index 07faa46dfa63b149481dd9dd078e12eff6dd6462..3f89b407e7c5a823d33c42b36b9c2ae9d06228b8 100644
(file)
--- a/
src/print.c
+++ b/
src/print.c
@@
-1813,11
+1813,11
@@
print_object (Lisp_Object obj, register Lisp_Object printcharfun, int escapeflag
{
Lisp_Object num = Fgethash (obj, Vprint_number_table, Qnil);
if (INTEGERP (num))
-
{
-
strout (" . ", 3, 3, printcharfun, 0);
-
print_object (obj, printcharfun, escapeflag);
-
goto end_of_list;
-
}
+ {
+ strout (" . ", 3, 3, printcharfun, 0);
+ print_object (obj, printcharfun, escapeflag);
+ goto end_of_list;
+ }
}
}